runtime.hmap.oldbuckets (field)
24 uses
runtime (current package)
map.go#L126: oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
map.go#L420: if c := h.oldbuckets; c != nil {
map.go#L481: if c := h.oldbuckets; c != nil {
map.go#L525: if c := h.oldbuckets; c != nil {
map.go#L893: b = (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map.go#L1009: h.oldbuckets = nil
map.go#L1058: h.oldbuckets = oldbuckets
map.go#L1104: return h.oldbuckets != nil
map.go#L1138: b := (*bmap)(add(h.oldbuckets, bucket*uintptr(t.bucketsize)))
map.go#L1151: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map.go#L1250: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
map.go#L1277: h.oldbuckets = nil
map_fast32.go#L32: if c := h.oldbuckets; c != nil {
map_fast32.go#L72: if c := h.oldbuckets; c != nil {
map_fast32.go#L375: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map_fast32.go#L450: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
map_fast64.go#L32: if c := h.oldbuckets; c != nil {
map_fast64.go#L72: if c := h.oldbuckets; c != nil {
map_fast64.go#L377: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map_fast64.go#L458: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
map_faststr.go#L83: if c := h.oldbuckets; c != nil {
map_faststr.go#L178: if c := h.oldbuckets; c != nil {
map_faststr.go#L403: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map_faststr.go#L473: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))